home *** CD-ROM | disk | FTP | other *** search
- // stdafx.h : include file for standard system include files,
- // or project specific include files that are used frequently, but
- // are changed infrequently
- //
-
- #include <afxwin.h> // MFC core and standard components
- #include <afxext.h> // MFC extensions (including VB)
-
- #define AFX_NUM_EVENTPARAM(type, lpParams) \
- (type FAR&)(**(type FAR* FAR*)lpParams)
-
- #define AFX_HLSTR_EVENTPARAM(lpParams) \
- (HLSTR FAR&)(*(HLSTR FAR*)lpParams)
-
- #define AFX_NUM_EVENTPARAMINDEX(type, lpParams, index) \
- (short FAR&)(**((type FAR* FAR*)(lpParams) + index))
-
- #define AFX_HLSTR_EVENTPARAMINDEX(lpParams, index) \
- (HLSTR FAR&)(*((HLSTR FAR*)(lpParams) + index))
-
-
-
-
-
-